home *** CD-ROM | disk | FTP | other *** search
/ CD/PC Actual 36 / PC Actual CD 36.iso / Share / PDA / WindowsCE / Utilidades / CommandCE / install.inf < prev    next >
Encoding:
INI File  |  2018-03-18  |  3.5 KB  |  126 lines

  1. ;installation setup file for CommandCE
  2.  
  3. [Version]            ;required section
  4. Signature="$Windows NT$"
  5. Provider="Exesoft"
  6. CESignature="$Windows CE$"
  7.  
  8. ;predefined directory strings (can only use at beginning of path)
  9. ;%CE1%    \Program Files
  10. ;%CE2%    \Windows
  11. ;%CE3%    \Windows\Desktop
  12. ;%CE4%    \Windows\Startup
  13. ;%CE5%    \My Documents
  14. ;%CE6%    \Program Files\Accessories
  15. ;%CE7%    \Program Files\Communication
  16. ;%CE8%    \Program Files\Games
  17. ;%CE9%    \Program Files\Pocket Outlook
  18. ;%CE10%    \Program Files\Office
  19. ;%CE11%    \Windows\Programs
  20. ;%CE12%    \Windows\Programs\Accessories
  21. ;%CE13%    \Windows\Programs\Communications
  22. ;%CE14%    \Windows\Programs\Games
  23. ;%CE15%    \Windows\Fonts
  24. ;%CE16%    \Windows\Recent
  25. ;%CE17%    \Windows\Favorites
  26.  
  27. [CEStrings]            ;required section
  28. AppName=CommandCE
  29. InstallDir=%CE1%\%AppName%
  30.  
  31. [Strings]            ;optional
  32. reg_path=Software\Exesoft\CommandCE
  33.  
  34. [CEDevice]
  35. UnsupportedPlatforms=        ;need to put P/PCs here
  36. VersionMin=2.0
  37. VersionMax=3.0
  38.  
  39. [CEDevice.SH3]
  40. ProcessorType=10003
  41.  
  42. [CEDevice.MIPS]
  43. ProcessorType=4000
  44.  
  45. [DefaultInstall]        ;required section
  46. AddReg=RegSettings.All
  47. CEShortcuts=Shortcuts.All
  48.  
  49. [DefaultInstall.SH3]
  50. Copyfiles=Files.Shared,Files.Common,Files.SH3
  51.  
  52. [DefaultInstall.MIPS]
  53. Copyfiles=Files.Shared,Files.Common,Files.MIPS
  54.  
  55. [SourceDisksNames]        ;required section
  56. 1=,"Common files",,
  57.  
  58. [SourceDisksNames.SH3]
  59. 2=,"SH3 files",,..\WSHRel
  60.  
  61. [SourceDisksNames.MIPS]
  62. 2=,"MIPS files",,..\WMIPSRel
  63.  
  64. [SourceDisksFiles]        ;required section
  65. readme.txt = 1
  66. register.txt = 1
  67. CommandCE.htp = 1
  68. CommandCE.htc = 1
  69.  
  70. [SourceDisksFiles.SH3]
  71. CommandCE.exe = 2
  72.  
  73. [SourceDisksFiles.MIPS]
  74. CommandCE.exe = 2
  75.  
  76. [DestinationDirs]        ;required section
  77. Shortcuts.All=0,%CE3%        ;\Windows\Desktop
  78. Files.Shared=0,%CE2%        ;\Windows
  79. Files.Common=0,%InstallDir%
  80. Files.SH3=0,%InstallDir%
  81. Files.MIPS=0,%InstallDir%
  82. DefaultDestDir=0,%InstallDir%
  83.  
  84. [Shortcuts.All]
  85. CommandCE,0,CommandCE.exe        ;uses path in DestinationDirs (desktop)
  86. CommandCE,0,CommandCE.exe,%CE11%    ;puts a shortcut on the startup menu
  87.  
  88. [Files.Common]
  89. ;flags:
  90. ;COPYFLG_WARN_IF_SKIP        0x00000001    ;warn if user attempts to skip after error
  91. ;COPYFLG_NOSKIP            0x00000002    ;don't allow user to skip copying a file
  92. ;COPYFLG_NO_OVERWRITE        0x00000010    ;don't overwrite an existing file in dest dir
  93. ;COPYFLG_REPLACEONLY        0x00000400    ;copy only if already there
  94. ;CE_COPYFLG_NO_DATE_DIALOG    0x20000000    ;don't copy if target is newer
  95. ;CE_COPYFLG_NODATECHECK        0x40000000    ;ignore date while overwriting target
  96. ;CE_COPYFLG_SHARED        0x80000000    ;reference when a shared DLL is counted
  97. ;examples:
  98. ;help.hlp,,,0
  99. ;Sample file.hlp,sample.hlp,,0    ;example of renaming destination file
  100. readme.txt,,,0
  101. register.txt,,,0
  102.  
  103. [Files.Shared]
  104. CommandCE.htp,,,0
  105. CommandCE.htc,,,0
  106.  
  107. [Files.SH3]
  108. CommandCE.exe,,,0
  109.  
  110. [Files.MIPS]
  111. CommandCE.exe,,,0
  112.  
  113. [RegSettings.All]
  114. ;flags:
  115. ;FLG_ADDREG_NOCLOBBER        0x00000002    ;if key exists, don't overwrite
  116. ;FLG_ADDREG_TYPE_SZ        0x00000000    ;registry data type REG_SZ
  117. ;FLG_ADDREG_TYPE_MULTI_SZ    0x00010000    ;registry data type REG_MULTI_SZ - value field that follows may be list of comma-delim strings
  118. ;FLG_ADDREG_TYPE_BINARY        0x00000001    ;registry data type REG_BINARY - only numbers, comma delim, 1 byte / field
  119. ;FLG_ADDREG_TYPE_DWORD        0x00010001    ;registry data type REG_DWORD - only win32 non-compat format supported
  120. ;examples:
  121. ;HKLM,%reg_path%,,0x00000000,alpha    ;example of default="alpha"
  122. ;HKLM,%reg_path%,test,0x00010001,3    ;example of test=3
  123. ;HKLM,%reg_path%\new,val,0x00010001,6    ;example of new\val=6
  124. HKCU,%reg_path%\General,InstallVersion,0x00000000,1.02
  125.  
  126.